home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- BackColor = &H000080FF&
- Caption = "Just A Few Things"
- ClientHeight = 3195
- ClientLeft = 4140
- ClientTop = 3270
- ClientWidth = 4680
- FillColor = &H000080FF&
- ForeColor = &H000080FF&
- LinkTopic = "Form2"
- ScaleHeight = 3195
- ScaleWidth = 4680
- Begin VB.CommandButton Command2
- Caption = "Goto Form3"
- Height = 375
- Left = 1320
- TabIndex = 2
- Top = 1800
- Width = 1935
- End
- Begin VB.CommandButton Command1
- Caption = "Click Here For a Message"
- Height = 495
- Left = 1440
- TabIndex = 1
- Top = 480
- Width = 1575
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 840
- TabIndex = 0
- Top = 120
- Width = 2775
- End
- Begin VB.Line Line1
- BorderColor = &H0000C0C0&
- X1 = 0
- X2 = 4680
- Y1 = 1200
- Y2 = 1200
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Text1.Text = "Don 't Tell your friends the password!!"
- End Sub
- Private Sub Command2_Click()
- Form3.Show
- End Sub
-